Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Transform stream which emits each part and pushes object with part.
Uses newline and carriage return for default delimiter (one or both in either order).
npm install each-part --save
buildEach = require 'each-part'
# uses newline or carriage return by default
# outputs `part` object by default, which contains `string` and `delim`
eachLine = buildEach()
eachLine.on 'part', (part, delim) ->
# do something with the part.
# when readableObjectMode is true, the default, then `part` is an object
# with two properties: `string` and `delim`
# when it's not true (you specify it as false in options) then `part` is the
# string. The second arg is always `delim`
eachLine.on 'error', (error) -> # do something with the error...
eachLine.on 'finish', (error) -> # all done...
# part is also passed on as an object to the next stream using objectMode:true
targetStream = require('through2') (part, _, next) ->
# do something with the part: part.string
console.log 'part:',part.string
next()
someStream.pipe(eachLine)
# can provide options to override the delimiter used:
eachPipe = buildEach delim:'|'
# can be a regular expression:
eachBlah = buildEach delim:/blah/
# to pass `string` to the next stream, set readableObjectMode to false:
eachLine = buildEach readableObjectMode:false
# when you do that, then:
# 1. the stream it pipes to will receive strings as chunks
# 2. the 'part' event will provide the string as the first arg, not an object
# Note: this means the next stream will not know the delimiter found
FAQs
Transform stream which emits each part and pushes object with part
The npm package each-part receives a total of 22 weekly downloads. As such, each-part popularity was classified as not popular.
We found that each-part demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.